-
Notifications
You must be signed in to change notification settings - Fork 255
Drop TravisCI testing in favor of GitHub Actions, test up to PHP 8.0 #94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
// Avoid throwing a risky test error. | ||
$this->assertTrue(true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use expectNotToPerformAssertions()
instead.
Although... not sure if it exists in old PHPUnit versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure in PHPUnit 4? Tests need to run on PHP 5.4 too.
ping @PhenX who seems the only person able to commit here |
not really necessary for the next milestone, but I assigned there to remind me to take a look |
TravisCI has become overly complicated to test on for OSS, most projects I follow shifted to GitHub Actions instead.
This PR removes TravisCI configuration, sets up GithHub actions for running on a weekly schedule for testing on all PHP versions from 5.4 to 8.0.
PHP 8.1 should be managed as a separate PR because it will require more changes (for example, #93).